All Questions
2 questions
5votes
1answer
2kviews
C++ design pattern for template instantiation based on run time information?
Say I want to be able to create objects for a range of template parameter template<int a> class Myclass : public MyclassSuper{...}; And I want to create objects like Myclass<...
6votes
1answer
7kviews
AST processing and usefulness of visitor pattern
I know the visitor pattern is typically used to traverse a hierarchy of heterogeneous objects (inheriting a same abstract object) and dissociate the processing of these objects from the data within ...